B01 - A+B Problem
https://atcoder.jp/contests/tessoku-book/tasks/tessoku_book_bz
提出
code: python
a, b = map(int, input().split())
print(a+b)